home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / TriSplitView.wo / TriSplitView.wod < prev    next >
Encoding:
Text File  |  1996-03-02  |  672 b   |  43 lines

  1. ////////////////////////
  2. //  TriSplitView
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. RowsConditional: WOConditional {
  8.    condition = asRows;
  9. };
  10.  
  11. ColumnsConditional: WOConditional {
  12.    condition = asColumns;
  13. };
  14.  
  15. RowsFrameSet: WOGenericContainer {
  16.    elementName = "frameset";
  17.    rows = sizeString;
  18. };
  19.  
  20. ColumnsFrameSet: WOGenericContainer {
  21.    elementName = "frameset";
  22.    cols = sizeString;
  23. };
  24.  
  25. FrameOne: WOFrame {
  26.     value = getPageOne;
  27.     name = frameNameOne;
  28. };
  29.  
  30. FrameTwo: WOFrame {
  31.     value = getPageTwo;
  32.     name = frameNameTwo;
  33. };
  34.  
  35. FrameThree: WOFrame {
  36.     value = getPageThree;
  37.     name = frameNameThree;
  38. };
  39.  
  40. Comment: WOConditional {
  41.     condition = NO;
  42. };
  43.